## Basic Syntax
##Images
```
![alt-text](url)
```

`Note`
>At this moment images can be only linked from sfw sources listed below:

**Please read the [rules](https://ponepaste.org/page/rules) on images**
- desuarchive/mlp/
- bronibooru.com
- giphy.com

![autism](https://s1.desu-usergeneratedcontent.xyz/mlp/image/1513/12/1513128444123.png)


### Headings

# H1
```
#Words go here
```
## H2
``` 
##Words go here
```
### H3
```
###Words go here
```

### Bold

**bold text**

``` 
**Words go here**
```
### Italic

*italicized text*

```
*Words go here*
```

### Greentext

>Implying Implications
```
>Words go here
```

### Ordered List

1. First item
2. Second item
3. Third item

```
1. First item
2. Second item
3. Third item
```

### Unordered List

- First item
- Second item
- Third item

```
- First item
- Second item
- Third item
```
### Code

`code`
```
`code`
```

### Horizontal Rule

---

```
---
```

### Link

[title](https://www.example.com)
```
[title](https://www.example.com)
```

## Extended Syntax

### Table

| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |

```
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |

```

### Fenced Code Block

```
``` ````
```

### Footnote

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.


### Strikethrough

~~Twilight doesn't have wings.~~
```
~~Twilight doesn't have wings.~~
```